home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / fakeroot.postrm < prev    next >
Text File  |  2009-03-01  |  1KB  |  35 lines

  1. #! /bin/sh -e
  2.  
  3. # This script is called twice during the removal of the package; once
  4. # after the removal of the package's files from the system, and as
  5. # the final step in the removal of this package, after the package's
  6. # conffiles have been removed.
  7. # summary of how this script can be called:
  8. #        * <postrm> `remove'
  9. #        * <postrm> `purge'
  10. #        * <old-postrm> `upgrade' <new-version>
  11. #        * <new-postrm> `failed-upgrade' <old-version>
  12. #        * <new-postrm> `abort-install'
  13. #        * <new-postrm> `abort-install' <old-version>
  14. #        * <new-postrm> `abort-upgrade' <old-version>
  15. #        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
  16. # for details, see http://www.debian.org/doc/debian-policy/ or
  17. # the debian-policy package
  18.  
  19. case "$1" in
  20.   (remove)
  21.     # ldconfig would clean this up the next time it's run, but
  22.     # we remove it to make piuparts stop complaining
  23.     rm -f /usr/lib/libfakeroot-0.so
  24.  
  25.     ;;
  26.   (purge|disappear|upgrade|failed-upgrade|abort-install|abort-upgrade)
  27.     :
  28.  
  29.     ;;
  30.   (*) echo "$0: didn't understand being called with \`$1'" 1>&2
  31.      exit 0;;
  32. esac
  33.  
  34. exit 0
  35.